BBC BASIC V - significado y definición. Qué es BBC BASIC V
Diclib.com
Diccionario en línea

Qué (quién) es BBC BASIC V - definición

VERSION OF THE BASIC PROGRAMMING LANGUAGE
BBC BASIC programming language; BBC Basic
  • BASIC prompt on the BBC Micro after switch-on or hard reset

Basic (dance move)         
DANCE MOVE-RELATED
Basic Step; Basic movement (dance); Basic step; Basic pattern; Basic move; Basic movement; Basic figure
The basic step, basic figure, basic movement, basic pattern, or simply basic is the dance move that defines the character of a particular dance. It sets the rhythm of the dance; it is the default move to which a dancer returns, when not performing any other moves.
BBC Micro         
SERIES OF MICROCOMPUTERS BY ACORN
BBC Microcomputer; Acorn Proton; Bbc micro; BBC micro; Bbcb; BBC B; BBC literacy project; BBC Computer Literacy Project; Bbc computer; BBC Computer; BBC Literacy Project; BBC Home Computer; BBC Model B; BBC model B; BBC Micro PC; The BBC Microcomputer System; BBC Microcomputer System; BBC Model A; Acorn BBC; Acorn BBC Micro; Beeb Micro; BBC computer; British Broadcasting Corporation Microcomputer System
BBC Microcomputer         
SERIES OF MICROCOMPUTERS BY ACORN
BBC Microcomputer; Acorn Proton; Bbc micro; BBC micro; Bbcb; BBC B; BBC literacy project; BBC Computer Literacy Project; Bbc computer; BBC Computer; BBC Literacy Project; BBC Home Computer; BBC Model B; BBC model B; BBC Micro PC; The BBC Microcomputer System; BBC Microcomputer System; BBC Model A; Acorn BBC; Acorn BBC Micro; Beeb Micro; BBC computer; British Broadcasting Corporation Microcomputer System
A series of 6502-based personal computers launched by {Acorn Computers} Ltd. in January 1982, for use in the British Broadcasting Corporation's educational programmes on computing. The computers are noted for their reliability (many are still in active service in 1994) and both hardware and software were designed for easy expansion. The 6502-based computers were succeeded in 1987 by the Acorn Archimedes family. xbeeb is a BBC Micro emulator for Unix and X11.

Wikipedia

BBC BASIC

BBC BASIC is a version of the BASIC programming language released in 1981 as the native programming language for the BBC Micro home/personal computer, providing a standardized language for a UK computer literacy project of the BBC. It was written mainly by Sophie Wilson.

BBC BASIC, based on the older Atom BASIC for the Acorn Atom, extended contemporary microcomputer BASICs with named DEF PROC/DEF FN procedures and functions, REPEAT UNTIL loops, and IF THEN ELSE structures inspired by COMAL. The interpreter also included statements for controlling the BBC Micro's four-channel sound output and its low-/high-resolution eight-mode graphics display.

Due to a number of optimizations, BBC BASIC ran programs much faster than Microsoft BASIC running on similar machines. The optimizations included using multiple linked lists for variable lookup rather than a single long list, pre-defining the location of integer variables, and having separate integer maths routines. Speed was further improved on the BBC machine by its fast RAM chips, which allowed the MOS Technology 6502 processor and Motorola 6845 display driver to share memory without either pausing for access. As a result of these design features, BBC BASIC ran David Ahl's Creative Computing Benchmark in 21 seconds, besting even the IBM Personal Computer, and far outpacing most other 8-bit platforms. The only commercial 8-bit BASIC computers that were as fast as the BBC Micro were the Swedish ABC 80 and ABC 800. The improved BASIC 4 on the BBC Master executes the same benchmark in about seven seconds.

One of the unique features of BBC BASIC was the inline assembler, allowing users to write assembly language programs for the 6502 and, later, the Zilog Z80, NS32016 and ARM. The assembler was fully integrated into the BASIC interpreter and shared variables with it, which could be included between the [ and ] characters, saved via *SAVE and *LOAD, and called via the CALL or USR commands. This allowed developers to write not just assembly language code, but also BASIC code to emit assembly language, making it possible to use code-generation techniques and even write simple compilers in BASIC.